home *** CD-ROM | disk | FTP | other *** search
/ The Business Master (4th Edition) / The Business Master - 4th Edition.iso / files / business / makedemo / mdem4c.exe / START.BAT < prev    next >
DOS Batch File  |  1992-11-13  |  1KB  |  36 lines

  1. ECHO OFF
  2. echo This batch file uses MLITE.EXE, a bare-bones MSHOW.EXE, to show a
  3. echo series of screens (i.e. full screens; no overlays.)
  4. echo
  5. echo Only seven key strokes are recognized (F1 - Help does not function.)
  6. echo
  7. echo     PgUp or Up Arrow Key      Presents previous screen
  8. echo
  9. echo     PgDn or Down Arrow Key    Presents next screen
  10. echo
  11. echo     F5                        Toggles between monochrome and color
  12. echo
  13. echo     Return                    Presents next screen, or if on last
  14. echo       or <Enter>                screen, exits with DOS ERRORLEVEL = 0
  15. echo
  16. echo     Esc                       Exits with DOS ERRORLEVEL = 1
  17. echo
  18. echo C:\MDEMO MLITE MESSAGE.1ST
  19. PAUSE
  20. MLITE MESSAGE.1ST
  21. IF ERRORLEVEL 1 GOTO END
  22. MDEMO
  23. :END
  24. CLS
  25. echo MLITE is designed to show a few expository screens about what
  26. echo presumebly will follow. It's ideal for those times when you wish to
  27. echo give the user some information without mucking up your program proper.
  28. echo Here we just presented a few screens about MakeDemo and shareware. As
  29. echo with MSHOW.EXE, you can combine presentations into single .EXE
  30. echo executibles. We left them separate in this distribution so you may
  31. echo look at MESSAGE.1ST, another MakeDemo presentation.
  32. echo
  33. echo Thank you for looking at MakeDemo. We would like to count you among
  34. echo our many satisfied customers.
  35.  
  36.